31. Parameters and Consistency

Parameters And Consistency

00:00
00:00

Process Noise and the UKF Project

For the CTRV model, two parameters define the process noise:

  • σa2 \large \sigma^2_a representing longitudinal acceleration noise (you might see this referred to as linear acceleration)
  • σψ¨2 \large \sigma^2_{\ddot\psi} representing yaw acceleration noise (this is also called angular acceleration)

In the project, both of these values will need to be tuned. You will have to test different values in order to get a working solution. In the video, Dominik mentions using σa2=9m2s4 \large \sigma^2_a = 9 \frac{m^2}{s^4} as a starting point when tracking a vehicle. In the UKF project, you will be tracking a bicycle rather than a vehicle. So 9 might not be an appropriate acceleration noise parameter. Tuning will involve:

  • guessing appropriate parameter values
  • running the UKF filter
  • deciding if the results are good enough
  • tweaking the parameters and repeating the process

Linear Acceleration Noise Parameter Intuition

Let's get some intuition for these noise parameters. The units for the acceleration noise parameter σa2 \large \sigma^2_a are m2s4 \Large\frac{m^2}{s^4} . Taking the square root, we get σa \large \sigma_a with units ms2 \large \frac{m}{s^2} . So the square root of the acceleration noise parameter has the same units as acceleration: ms2 \large \frac{m}{s^2}

The parameter σa \large \sigma_a is the standard deviation of linear acceleration! Remember from the "CTRV Process Noise Vector" lecture that the linear acceleration is being modeled as a Gaussian distribution with mean zero and standard deviation σa \large \sigma_a . In a Gaussian distribution, about 95% of your values are within 2 σa \large \sigma_a .

So if you choose σa2=9m2s4 \large \sigma^2_a = 9 \frac{m^2}{s^4} , then you expect the acceleration to be between 6ms2 \large -6 \frac{m}{s^2} and +6ms2 \large +6 \frac{m}{s^2} about 95% of the time.

Tuning parameters involves some trial and error. Using your intuition can help you find reasonable initial values.

Yaw Acceleration Noise Parameter Intuition

If yaw acceleration has units of radians/s2 radians/s^2 , what are the units of the yaw acceleration noise parameter σψ¨2 \large \sigma^2_{\ddot\psi} ?

(A) rad/s2 rad/s^2

(B) rad2/s2 rad^2/s^2

(C) rad/s4 rad/s^4

(D) rad2/s4 rad^2/s^4

Yaw Acceleration Noise Parameter Units

What are the units for the yaw acceleration noise parameter?

SOLUTION: D

Let's think about what values might be reasonable for the yaw acceleration noise parameter.

Imagine the bicycle is traveling in a circle with a constant yaw rate (angular velocity) of π8rads \Large \frac{\pi}{8} \frac{rad}{s} . That means the bicycle would complete a full circle in 16 seconds: π8rads \Large\frac{\pi}{8} \frac{rad}{s} \cdot 16s=2π 16 s = 2\pi .

That seems reasonable for an average bike rider traveling in a circle with a radius of maybe 16 meters.

The bike rider would have also have a tangential velocity of 6.28 meters per second because π8rads \Large\frac{\pi}{8} \frac{rad}{s} \cdot 16 meters 16 \text{ meters} =6.28 meters per second = 6.28 \text{ meters per second} .

What if the angular acceleration were now 2πrads2 \large -2\pi \frac{rad}{s^2} instead of zero? In just one second, the angular velocity would go from π8rads \Large \frac{\pi}{8} \frac{rad}{s} to 15π8rads \Large -\frac{15\pi}{8} \frac{rad}{s} . This comes from π8rads \Large \frac{\pi}{8} \frac{rad}{s} 2π - 2\pi rads2 \Large \frac{rad}{s^2} \cdot 1s= 1 s = - 15π8rads \Large \frac{15\pi}{8} \frac{rad}{s} .

The bicycle has been completing a complete circle in 16 seconds. But with such a high angular acceleration, then all of a sudden the bicycle is going around the circle in the opposite direction and only takes about 1.1 second to complete the circle.

From a bicycle, a setting in the range of σψ¨=2πrads2 \large \sigma_{\ddot\psi} = 2\pi \frac{rad}{s^2} seems too high. In the project, you'll have to experiment with different values to see what works well.

Measurement Noise Parameters

Measurement noise parameters represent uncertainty in sensor measurements. In general, the manufacturer will provide these values in the sensor manual. In the UKF project, you will not need to tune these parameters.